From: Chad Horohoe Date: Wed, 30 Mar 2011 14:33:37 +0000 (+0000) Subject: Merge some deployment changes to trunk: r82738 (as HISTORY), r81962 X-Git-Tag: 1.31.0-rc.0~31130 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=232288831d972d32a2386c850d60bd1836e25587;p=lhc%2Fweb%2Fwiklou.git Merge some deployment changes to trunk: r82738 (as HISTORY), r81962 --- diff --git a/HISTORY b/HISTORY index 72e36ef901..7dcd72896e 100644 --- a/HISTORY +++ b/HISTORY @@ -10,6 +10,12 @@ LocalSettings.php. Also, configuration script directory has been renamed from config/ to mw-config/. The specific bugs are listed below in the general notes. +=== New ResourceLoader in 1.17 === +MediaWiki 1.17 ships with a ResourceLoader which combines and minifies css and +javascript attached to the page. They are served from the new entry point load.php +If the page is served with the &debug=true parameter, the non-minified files +are used instead. + === Configuration changes in 1.17 === * DatabaseFunctions.php that was needed for compatibility with pre-1.3 extensions has been removed. diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 782a229cac..ec592ab83c 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -1130,6 +1130,7 @@ class EnhancedChangesList extends ChangesList { $this->insertComment( $r, $rcObj ); $this->insertRollback( $r, $rcObj ); # Tags + $classes = explode( ' ', $classes ); $this->insertTags( $r, $rcObj, $classes ); # Show how many people are watching this if enabled $r .= $this->numberofWatchingusers($rcObj->numberofWatchingusers);